42
Relation between CLASS and STRUCT
wstruct date
w{
w int year, month, day;
w};
wclass date
w{
w public:
w date(); // constructor
w ~date();  // destructor
w int year, month, day;
w};